home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980424-19980901 / 000182_news@newsmaster….columbia.edu _Mon Jun 8 18:52:33 1998.msg < prev    next >
Internet Message Format  |  1998-08-31  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id SAA24468
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 8 Jun 1998 18:52:32 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id SAA20037
  7.     for kermit.misc@watsun; Mon, 8 Jun 1998 18:52:31 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: false host - vt100 development
  12. Date: 8 Jun 1998 22:52:27 GMT
  13. Organization: Columbia University
  14. Lines: 32
  15. Message-ID: <6lhpvb$n9q$1@apakabar.cc.columbia.edu>
  16. References: <6lhoho$ihj$1@mercury.medianet.ie>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8853
  19.  
  20. In article <6lhoho$ihj$1@mercury.medianet.ie>,
  21. John Dillon <jfd@clubi.ie> wrote:
  22. : This probably is something simple that i can't figure out. But i'll ask
  23. : anyway.
  24. : I am developing low level screen routines on a unix/vt100 (through kermit)
  25. : system
  26. : at work. At home I want to try out some things on my Windows95 based PC.
  27. : I want to c:\> type ascreen.txt > somedevice     but I then want Kermit to
  28. : read this file
  29. : "ascreen.txt" and display it
  30. : Is this posssible in win 95?
  31. :
  32. It's possible with Kermit 95:
  33.  
  34.   http://www.columbia.edu/kermit/k95.html
  35.  
  36. The method is not immediately obvious, but it's there:
  37.  
  38.  1. Make sure you don't already have an active connection.
  39.  2. Give the following commands to Kermit 95:
  40.  
  41.       SET TERMINAL TYPE VT100 ; (or other desired type)
  42.       SET NETWORK TYPE FILE
  43.       SET HOST <filename>
  44.       VIEW      
  45.  
  46.  3. Use Page Up / Down to scroll thru the display.
  47.  
  48. - Frank